Auto merge of #5074 - CAD97:patch-1, r=alexcrichton
authorbors <bors@rust-lang.org>
Sun, 25 Feb 2018 12:22:31 +0000 (12:22 +0000)
committerbors <bors@rust-lang.org>
Sun, 25 Feb 2018 12:22:31 +0000 (12:22 +0000)
commited8dfce4c119dca307c428e879a075bd24ab51b8
treee7385e7ef294491e43aa0295ed5fc33d345f86a0
parent6cfd4e2a41c7ffd205f50268ce5ff05d1d5ed098
parent1ddba76a0f5f83884d20be97f49452f9dd1897f1
Auto merge of #5074 - CAD97:patch-1, r=alexcrichton

Separate licenses with a `/` instead of ` OR `

It's what we tell others to do.

https://doc.rust-lang.org/cargo/reference/manifest.html#package-metadata

> ```toml
> # This is a string description of the license for this package. Currently
> # crates.io will validate the license provided against a whitelist of known
> # license identifiers from http://spdx.org/licenses/. Multiple licenses can be
> # separated with a `/`.
> license = "..."
> ```

Noted [here](https://github.com/TeXitoi/structopt/pull/71#discussion_r170423582).

This should either use `/` or a note should be added that ` OR ` is allowed as a combination operator.